Class Interface

java.lang.Object
  extended by CustomerInfo
      extended by Account
          extended by Interface

public class Interface
extends Account


Field Summary
 
Fields inherited from class CustomerInfo
maxAccountNumber
 
Constructor Summary
Interface()
           
 
Method Summary
 void adminMenu()
           
 void customerMenu(CustomerInfo cust)
           
 CustomerInfo enterLoginPinCode()
           
 void fastCashMenu(CustomerInfo cust)
           
static void main(java.lang.String[] args)
           
 void normalCash(CustomerInfo cust)
           
 java.lang.String printReceiptDeposit(CustomerInfo c, java.lang.String todaysDate, java.lang.Integer dAmount)
           
 java.lang.String printReceiptTransfer(CustomerInfo c, java.lang.String todaysDate, java.lang.Integer dAmount)
           
 java.lang.String printReceiptWithdraw(CustomerInfo c, java.lang.String todaysDate, java.lang.Integer wAmount)
           
 
Methods inherited from class Account
addCustomer, checkAccountNumber, checkLoginPinCode, customerRecord, deleteCustomer, loadCustomerFromFile, saveCustomerToFile, searchCustomer, updateCustomer
 
Methods inherited from class CustomerInfo
print
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Interface

public Interface()
Method Detail

fastCashMenu

public void fastCashMenu(CustomerInfo cust)

normalCash

public void normalCash(CustomerInfo cust)

printReceiptWithdraw

public java.lang.String printReceiptWithdraw(CustomerInfo c,
                                             java.lang.String todaysDate,
                                             java.lang.Integer wAmount)

printReceiptDeposit

public java.lang.String printReceiptDeposit(CustomerInfo c,
                                            java.lang.String todaysDate,
                                            java.lang.Integer dAmount)

printReceiptTransfer

public java.lang.String printReceiptTransfer(CustomerInfo c,
                                             java.lang.String todaysDate,
                                             java.lang.Integer dAmount)

customerMenu

public void customerMenu(CustomerInfo cust)

adminMenu

public void adminMenu()

enterLoginPinCode

public CustomerInfo enterLoginPinCode()

main

public static void main(java.lang.String[] args)